encoding/binary.coder.offset (field)

32 uses

	encoding/binary (current package)
		binary.go#L746: 	offset int
		binary.go#L753: 	x := d.buf[d.offset]
		binary.go#L754: 	d.offset++
		binary.go#L760: 		e.buf[e.offset] = 1
		binary.go#L762: 		e.buf[e.offset] = 0
		binary.go#L764: 	e.offset++
		binary.go#L768: 	x := d.buf[d.offset]
		binary.go#L769: 	d.offset++
		binary.go#L774: 	e.buf[e.offset] = x
		binary.go#L775: 	e.offset++
		binary.go#L779: 	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
		binary.go#L780: 	d.offset += 2
		binary.go#L785: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
		binary.go#L786: 	e.offset += 2
		binary.go#L790: 	x := d.order.Uint32(d.buf[d.offset : d.offset+4])
		binary.go#L791: 	d.offset += 4
		binary.go#L796: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
		binary.go#L797: 	e.offset += 4
		binary.go#L801: 	x := d.order.Uint64(d.buf[d.offset : d.offset+8])
		binary.go#L802: 	d.offset += 8
		binary.go#L807: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
		binary.go#L808: 	e.offset += 8
		binary.go#L960: 	d.offset += dataSize(v)
		binary.go#L965: 	clear(e.buf[e.offset : e.offset+n])
		binary.go#L966: 	e.offset += n